From: Vagrant Cascadian Date: Wed, 15 Apr 2020 00:24:39 +0000 (+0100) Subject: ensure-config-sandbox-for-make-env X-Git-Tag: archive/raspbian/2020.07+dfsg-2+rpi1^2^2^2^2~6 X-Git-Url: https://dgit.raspbian.org/%22http://www.example.com/cgi/%22/%22http:/www.example.com/cgi/%22?a=commitdiff_plain;h=1a45b690b0728b0e0f9e2e61d48f1c4c8e76d041;p=u-boot.git ensure-config-sandbox-for-make-env Ensure that CONFIG_SANDBOX is set when running "make env", avoiding a failure to build caused by config_distro_bootcmd.h following the wrong codepath... Gbp-Pq: Name ensure-config-sandbox-for-make-env.patch --- diff --git a/include/configs/sandbox.h b/include/configs/sandbox.h index 1c13055cd..acbefb18a 100644 --- a/include/configs/sandbox.h +++ b/include/configs/sandbox.h @@ -64,6 +64,9 @@ #ifdef __ASSEMBLY__ #define BOOTENV #else +#ifndef CONFIG_SANDBOX +#define CONFIG_SANDBOX 1 +#endif #include #endif